home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 14
/
CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso
/
CUCD
/
CDROM
/
ACDPlay
/
arexx
/
FadeIn.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-04-27
|
479b
|
14 lines
/* FadeIn.rexx 1.0 by Martin Kresse
This script demonstrates the usage of the SETVOLUME command of ACDPlay. */
OPTIONS RESULTS /* demand 2nd results */
address 'ACDPLAY' /* set destination for commands */
'PLAY' /* start audio play */
'GETVOLUME' /* get current volume */
do i = RESULT to 255
'SETVOLUME' i /* slowly fade volume up */
end